home *** CD-ROM | disk | FTP | other *** search
- VERSION 2.00
- Begin Form frmAbout
- BackColor = &H8000000F&
- BorderStyle = 3 'Fixed Double
- Caption = "About - Optimizing Visual Basic Code"
- ClientHeight = 2205
- ClientLeft = 2040
- ClientTop = 2040
- ClientWidth = 4830
- ClipControls = 0 'False
- Height = 2610
- Left = 1980
- LinkTopic = "Form1"
- MaxButton = 0 'False
- MinButton = 0 'False
- ScaleHeight = 2205
- ScaleWidth = 4830
- Top = 1695
- Width = 4950
- Begin PictureBox Picture1
- AutoSize = -1 'True
- BackColor = &H00C0C0C0&
- BorderStyle = 0 'None
- ClipControls = 0 'False
- Height = 480
- Left = 180
- Picture = ABOUT.FRX:0000
- ScaleHeight = 480
- ScaleWidth = 480
- TabIndex = 5
- Top = 195
- Width = 480
- End
- Begin CommandButton ExitButton
- Caption = "&OK"
- Height = 375
- Left = 3585
- TabIndex = 4
- Top = 135
- Width = 1050
- End
- Begin CommandButton Command1
- Caption = "Sys &Info..."
- Height = 375
- Left = 3585
- TabIndex = 3
- Top = 675
- Width = 1050
- End
- Begin Line Line1
- BorderColor = &H00808080&
- Index = 1
- X1 = 915
- X2 = 4615
- Y1 = 1260
- Y2 = 1260
- End
- Begin Line Line1
- BorderColor = &H00FFFFFF&
- BorderWidth = 2
- Index = 0
- X1 = 900
- X2 = 4600
- Y1 = 1275
- Y2 = 1275
- End
- Begin Label lblDesc
- BackColor = &H00C0C0C0&
- Caption = "VBITS '95 London. Optimizing Visual Basic Code Sample Application."
- FontBold = 0 'False
- FontItalic = 0 'False
- FontName = "MS Sans Serif"
- FontSize = 8.25
- FontStrikethru = 0 'False
- FontUnderline = 0 'False
- ForeColor = &H00800000&
- Height = 465
- Left = 900
- TabIndex = 0
- Top = 750
- Width = 2655
- End
- Begin Label lblCredits
- BackColor = &H00C0C0C0&
- Caption = "Created By: Many Microsoft Presenters
- 1995 - Microsoft Corporation"
- ForeColor = &H00800000&
- Height = 615
- Left = 900
- TabIndex = 1
- Top = 1395
- Width = 3315
- End
- Begin Label lblAppInfo
- BackColor = &H00C0C0C0&
- ForeColor = &H00800000&
- Height = 525
- Left = 900
- TabIndex = 2
- Top = 195
- Width = 2520
- End
- Option Explicit
- Sub Command1_Click ()
- Load frmSysInfo
- frmSysInfo.Show
- End Sub
- Sub ExitButton_Click ()
- Unload Me
- End Sub
- Sub Form_Load ()
- Me.Left = (Screen.Width - Me.Width) / 2
- Me.Top = (Screen.Height - Me.Height) / 2
- lblAppInfo = "Optimizing Visual Basic Code" & Chr$(13) & Chr$(10) & "ver. " & AppVersion & " - Build " & LastAppUpdate
- End Sub
- Sub Picture1_DblClick ()
- frmSysInfo.Show 1
- End Sub
-